From edaf77da740d13bb46e460695709bab6fe395345 Mon Sep 17 00:00:00 2001 From: =?utf8?q?=C3=81lvaro=20Fern=C3=A1ndez=20Rojas?= Date: Tue, 18 Nov 2025 10:36:26 +0100 Subject: [PATCH] scripts: devel-build: add missing LUAPATH MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Add missing LUA_PATH, which prevents installing `uloop.so` to `/usr/local/lib/lua/5.1`. Fixes https://github.com/openwrt/libubox/issues/36. Signed-off-by: Álvaro Fernández Rojas --- scripts/devel-build.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/devel-build.sh b/scripts/devel-build.sh index 2b33ce5..5a7c7a4 100755 --- a/scripts/devel-build.sh +++ b/scripts/devel-build.sh @@ -62,6 +62,7 @@ cmake \ -S . \ -B "${BUILDDIR}" \ -DCMAKE_PREFIX_PATH="${BUILDDIR}" \ + -DLUAPATH=${BUILDDIR}/lib/lua \ --install-prefix "${BUILDDIR}" \ ${BUILD_ARGS} make -C "${BUILDDIR}" -- 2.30.2